home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / xlib / xlib06p2 / xbezier.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-20  |  538 b   |  26 lines

  1. /*********************************************************************\
  2. | XBEZIER header file
  3. |
  4. |
  5. | This module was written by Matthew MacKenzie
  6. | matm@eng.umd.edu
  7. \*********************************************************************/
  8.  
  9. #ifndef _XBEZIER_H_
  10. #define _XBEZIER_H_
  11. #ifdef __cplusplus
  12.  
  13. extern "C" {
  14. #endif
  15.  
  16. void cdecl x_bezier (int E1x, int E1y, int C1x, int C1y, int C2x, int C2y,
  17.          int E2x, int E2y, int levels, char color,
  18.          unsigned PageOffset);
  19.  
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23.  
  24. #endif
  25.  
  26.